home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Developer CD Series 1997 April: Mac OS SDK
/
Dev.CD Apr 97 SDK1.toast
/
Development Kits (Disc 1)
/
Open Transport
/
Sample Code
/
NetFractal™
/
Fractal 8 source
/
OutPoint.h
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
Text File
|
1996-11-19
|
376 b
|
30 lines
|
[
TEXT/MPCC
]
// OutPoint.h
#pragma once
#include "NetPoint.h"
class OutPoint :
public NetPoint
{
protected:
union {
InetAddress inet;
} fHisAddress;
long fHisAddressSize;
public:
OutPoint(
const char *protocol,
const char *address,
short port);
~OutPoint();
virtual OSErr SendData(
const void *data,
long size);
};